home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-09-23 | 984 b | 28 lines | [TEXT/????] |
- // Copyright 1993 Ralph Gonzalez
-
- /*
- * FILE: coord.h
- * AUTHOR: R. Gonzalez
- * CREATED: October 2, 1990
- *
- * Defines 2D and 3D coordinate classes for the picture
- * application.
- */
-
- # ifndef coord_h
- # define coord_h
-
- # include "class.h"
- # include "frame.h"
- # include "trans.h"
-
- /******************************************************************
- * 2D coordinate
- ******************************************************************/
- class Coord2:public Generic_Class
- {
- public:
- double x;
- double y;
-
- Coord2(vo